home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 for Intel / NeXTSTEP 3.2 for Intel.iso / NextAdmin / SimpleNetworkStarter.app / rc.mail < prev    next >
Encoding:
Text File  |  1992-05-20  |  683 b   |  31 lines

  1. #!/bin/sh -f
  2. # SimpleNetStarter backup program, installs mailDBupdate in cron if it isn't
  3. # there, leaves it alone otherwise.
  4. # Copyright 1992 NeXT Computer, Inc.   All rights reserved.
  5.  
  6. # start at root
  7. set v
  8. cd /
  9.  
  10. if [  ! -f /etc/crontab ]; then
  11.     echo "making /etc/crontab from scratch" > /dev/console 2>&1
  12.     touch /etc/crontab
  13.     chown root.staff /etc/crontab
  14.     chmod 644 /etc/crontab
  15. fi
  16.  
  17. mailDBpresent=`/bin/grep mailDBupdate /etc/crontab`
  18.  
  19. if [ "$mailDBpresent" -eq "" ]; then
  20.     echo "installing mailDBupdate command" > /dev/console 2>&1
  21.     echo "3 0 * * *    root    /usr/bin/mailDBupdate" >> /etc/crontab
  22. else
  23.     echo "mailDBupdate command already present" > /dev/console 2>&1
  24. fi
  25.  
  26. exit 0
  27.  
  28.  
  29.  
  30.  
  31.